* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e8eef78a !important;
}

.whole-page-wrapper {
    background-image: url("../Assets/E-70.png");
    background-position: center;
    background-size: contain;
    max-width:3200px;
    margin-left:auto;
    margin-right:auto;
}

.hero-image-div {
    position: relative;
    text-align: center ;
}

.hero-image-div img {
    object-fit: cover;
    min-height: 300px;
    max-height: 1160px;
}

.hero-image-div .hero-text {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 3px 3px 6px black;
    color: white;
}

.description-header {
    color: white;
    background-color: #d26e63;
    padding: 15px 0 15px 0;
    box-shadow: 0px 7px 10px 4px rgb(167 157 157 / 70%);
}

.description-section {
    text-align: center;
    background-image: url('../Assets/E-93.png');
    background-size: cover;
    height: 420px;
    z-index: 0;
    position: relative;
    background-position: bottom;
}

.description-section .text-div {
    position: relative;
    text-align: center;
    z-index: 1;
    max-width: 80ch;
    margin-right: auto;
    margin-left: auto;
    padding: 5px 20px 0 20px;
    color:#1c2f4d;
}

.drop-element {
    height: 37px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.animated-bird {
    text-align: center;
}

.animated-bird img {
    max-height: 150px;
    animation-name: bird-animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes bird-animation {
    0%, 100% {
        transform: rotateY(0deg);
    }

    50% {
        transform: rotateY(180deg);
    }
}

.description-wrapper {
    display: flex;
    justify-content: center;
    width: fit-content;
}

.description-div-text {
    position: relative;
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: justify;
    color: #1c2f4d;
    display: flex;
}

.description-div-text i {
    color:#2e6295;
    transform: translateX(-10px);
}

.description-div .arrow-div {
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
    align-items: flex-start;
    display: flex;
    place-content: flex-end;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
    opacity:0;
    transition: 2s;
    animation-iteration-count: infinite;
    animation-duration: 8s; 
}

.description-div .arrow-div-smallscreen {
    padding-left: 20px;
    padding-right: 20px;
    vertical-align: middle;
    align-items: flex-start;
    place-content: center;
    flex-wrap: wrap;
    align-content: center;
    overflow: hidden;
    opacity:0;
    transition: 2s;
    animation-iteration-count: infinite;
    animation-duration: 8s; 
}

.description-div .arrow-div img {
    height:75px; 
}

.description-div .arrow-div-smallscreen img {
    height: 50px;
}

.description-div .first-block {
    animation-name: arrows-animation-first-block;
}

.description-div .second-block {
    animation-name: arrows-animation-second-block;
}

.description-div .third-block {
    animation-name: arrows-animation-third-block; 
}

.description-div .fourth-block {
    animation-name: arrows-animation-fourth-block;    
}

.description-div .fifth-block {
    animation-name: arrows-animation-fifth-block; 
}

@keyframes arrows-animation-first-block {
    0% {opacity: 0;} 
    7% {opacity: 1;}
    14% {opacity: 0;}
}

@keyframes arrows-animation-second-block {
    0% {opacity: 0;}
    14% {opacity: 0;}
    21% {opacity: 1;}
    28% {opacity: 0;}
}

@keyframes arrows-animation-third-block {
    0% {opacity: 0;}
    28% {opacity: 0;}
    35% {opacity: 1;}
    42% {opacity: 0;}
}

@keyframes arrows-animation-fourth-block {
    0% {opacity: 0;}
    42% {opacity: 0;}
    50% {opacity: 1;}
    58% {opacity: 0;}
}

@keyframes arrows-animation-fifth-block {
    0% {opacity: 0;}
    58% {opacity: 0;}
    68% {opacity: 1;}
    78% {opacity: 0;}
}

@keyframes button-animation {
    0% {background-color: #f7c851;}
    80% {background-color: #f7c851; transform: scale(1);}
    90% {background-color: #e9953f; transform: scale(1.3);}
    100% {background-color: #f7c851;}
}

.description-div-text p {
    margin-bottom: 0;
}

.description-wrapper div:nth-child(2) {
    max-width: 768px;
    padding: 30px 30px;
    border: 2px solid #1c2f4d;
    border-radius: 20px;
}

.description-div-text h2,
.description-div-text ul {
    margin-bottom: 20px !important;
}
  
.register-button {
    margin: 75px auto 120px auto;
    font-family: 'Poppins', serif;
    font-size: 30px;
    display: block;
    width: 300px;
    height: 70px;
    background-color: #f7c851;
    color: white;
    transition: .5s ease;
    border: 1px solid transparent;
    border-radius: 10px;
    animation-name: button-animation;
    animation-duration: 8s;
    animation-iteration-count: infinite;
}

.register-button:hover,
.register-button:active {
    background-color: transparent !important;
    border: 1px solid #f7c851;
    color: #f7c851;
}

.cars-section {
    min-height: 388px;
    background-image: url('../Assets/AdmissionProcess/bottom-bg.png');
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}

.wrapper {
    background-image: url('../Assets/AdmissionProcess/wrapper-bg.png'), url('../Assets/AdmissionProcess/admission-wave-bg.png');
    background-size: contain, cover;
    background-position-x: center, center;
    background-position-y: bottom, center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 2350px) {
    .description-section {
      height: 450px;
    }
}

@media screen and (max-width: 1760px) {
    .cars-section,
    .wrapper {
        background-size: cover;
    }
}

@media screen and (max-width: 1200px) {
    .description-section {
      height: 330px;
    }

    .animated-bird img {
        max-height: 125px;
    }

    .flowers-section {
        min-height: 300px;
    }

    .register-section h2 {
        font-size: 34px;
    }

    .register-button {
        font-size: 25px;
        width: 250px;
        height: 50px;
    }

    .description-wrapper div:nth-child(2) {
        max-width: auto;
    }

    .description-div .arrow-div img {
        height:50px;
    }

    .description-div-text {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .wrapper {
        background-image: none, url('../Assets/AdmissionProcess/admission-wave-bg.png');
    }
}

@media screen and (max-width: 991px) {
    section .description-text-div {
        margin-bottom: 50px;
        padding: 0 30px 0 30px;
    }

    .description-section {
        height: 320px;
    }

    .cars-section {
        min-height: 310px;
    }

    .description-div .container {
        max-width: fit-content;
    }

    .description-div .arrow-div {
        padding-left: 5px;
        padding-right: 5px;
    }
}

@media screen and (max-width: 575px) {
    .cars-section {
        min-height: 200px;
    }

    .animated-bird img {
        max-height: 100px;
    }

    .register-button {
        margin:30px auto 120px auto;
        font-size: 22px;
        width: 230px;
        height: 50px;
    }

    .register-section h2 {
        font-size: 30px;
    }

    .description-div-text {
        margin-top: 15px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 437px) {
    .hero-image-div img {
        min-height: auto;
    }
}

@media screen and (max-width: 414px) {
    .description-section {
      height: 400px;
    }
}
  
@media screen and (max-width: 367px) {
    .description-section {
        height: 460px;
    }
}